server-parsed HTML - определение. Что такое server-parsed HTML
Diclib.com
Словарь онлайн

Что (кто) такое server-parsed HTML - определение

INTERPRETED SERVER-SIDE SCRIPTING LANGUAGE
Server-side include; Shtml; SHTML; .shtml; Server side include; Client Side Includes; .stm; Server Side Include; Server-Side Includes; Mod include; Server side includes; .shtm

server-parsed HTML      
<file format, World-Wide Web> (SPML, SHTML) A kind of HTML file containing server-specific, non-standard commands which are interpreted by the HTTP server and replaced by standard HTML or text before the data is returned to the client. Different servers use different command syntax and support different sets of commands. The most common example is a server-side include command which simply expands to the contents of some given file and allows bits of HTML or text to be shared between pages for ease of updating. Other commands insert the value of an environment variable or the output of a shell command. These allow pages to be different each time they are served without requiring a CGI script. Some servers distinguish SPML from HTML with a different filename extension, others use the execute bit of the file's permissions. (1996-09-29)
shtml         
server-side include         
<World-Wide Web> (SSI) The facility provided by most {web servers}, e.g. NCSA httpd, to replace special tags in an HTML file with the contents of another file before the file is sent out by the server, i.e. an HTML macro. {NCSA httpd tutorial (http://hoohoo.ncsa.uiuc.edu/docs/tutorials/includes.html)}. (1996-09-08)

Википедия

Server Side Includes

Server Side Includes (SSI) is a simple interpreted server-side scripting language used almost exclusively for the World Wide Web. It is most useful for including the contents of one or more files into a web page on a web server (see below), using its #include directive. This could commonly be a common piece of code throughout a site, such as a page header, a page footer and a navigation menu. SSI also contains control directives for conditional features and directives for calling external programs. It is supported by Apache, LiteSpeed, nginx, IIS as well as W3C's Jigsaw. It has its roots in NCSA HTTPd.

In order for a web server to recognize an SSI-enabled HTML file and therefore carry out these instructions, either the filename should end with a special extension, by default .shtml, .stm, .shtm, or, if the server is configured to allow this, set the execution bit of the file.